home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / autosa~1 / autosa~1.rc < prev    next >
Text File  |  1995-11-25  |  3KB  |  93 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // AutoSample.RC
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // contains the resources for our DLL, including the TypeLib, error strings,
  13. // and versioning information.
  14. //
  15. #include "Resource.H"
  16. #include "Windows.H"
  17.  
  18. #define IDC_STATIC -1
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Bitmap and Icons that are not localized
  23. //
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. //
  27. // Our Non-Localized Type Library
  28. //
  29. 1 TYPELIB AutoSample.TLB
  30.  
  31.  
  32.  
  33. /////////////////////////////////////////////////////////////////////////////
  34. // EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE         //
  35. /////////////////////////////////////////////////////////////////////////////
  36.  
  37.  
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40. //
  41. // String tables with Exception Information, etc.
  42. //
  43.  
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // Version Information
  47. /////////////////////////////////////////////////////////////////////////////
  48. //
  49. #include "dwinvers.h"
  50. #include <winver.h>
  51.  
  52. VS_VERSION_INFO VERSIONINFO
  53.  
  54. FILEVERSION    04,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  55. PRODUCTVERSION    04,00,vusVersNumf2,vusVersNuml2
  56.  
  57.  
  58. FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
  59. #ifdef DEBUG
  60. FILEFLAGS    VS_FF_DEBUG
  61. #else
  62. FILEFLAGS    0L
  63. #endif
  64.  
  65. FILEOS        VOS_NT_WINDOWS32
  66.  
  67. FILETYPE    VFT_DLL
  68. FILESUBTYPE    0
  69. {
  70.     BLOCK "StringFileInfo"
  71.     {
  72.         BLOCK "040904B0" // Language and character set identifiers.
  73.         {
  74.             VALUE "CompanyName",     "My Company Name\0"
  75.             VALUE "FileDescription", "AutoSample"
  76.             VALUE "FileVersion",     vszVersNumAll
  77.             VALUE "InternalName",    "AutoSample.DLL\0"
  78.             VALUE "LegalCopyright",  vszCopyright
  79.             VALUE "LegalTrademarks", "Put Legal TradeMarks here ...\0"
  80.             VALUE "ProductName",     "AutoSample Object Library\0"
  81.             VALUE "ProductVersion",  vszVersNumAll
  82.             VALUE "Comments",        vszMakeDate
  83.             VALUE "OLESelfRegister", "\0"
  84.         }
  85.     }
  86.     BLOCK "VarFileInfo"
  87.     {
  88.         VALUE "Translation" ,0x409, 0x4b0
  89.     }
  90. }
  91.  
  92.  
  93.